compiler - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

compiler - перевод на русский

COMPUTER PROGRAM THAT TRANSFORMS SOURCE CODE INTO OBJECT CODE
Compilers; Compile; Language compiler; Compile (computing); Compiler (computing); Compiled sofware; Compiling; Compiler design; Compiler (programming); Compiled; Parallel compiler; Compiler theory; Parallel compilers; Recompile; Parallel complier; Compilation (programming); Semantic analysis (computer science); Compiler (computer); Code compilation; Compiling tools; Compiler construction; Programming language compiler; Compiled software; Write compiler; Compiler designer; Compiler writer; Compiler writing; Compiler frontend; Compiler backend; Compilation (computing); Code compiling; Line reconstruction; Compiler front-end; Compiler back-end; Code compiler; CFE (compiler); Front end (compiler); Compiler front end; Compiler back end; Compiler middle end; Three-stage compilation; Recompiled; Back end (Compiler); Program compilation
  • Compiler design
  • grammar for C]], respectively.
Найдено результатов: 110
compiler         

[kəm'pailə]

общая лексика

компилятор, транслятор

программа, выполняющая трансляцию исходного текста разрабатываемой программы с языка программирования высокого уровня в эквивалентную программу на целевом языке (см. target language). Обычно это машинный или промежуточный код. Компиляторы, в зависимости от того как они сконструированы, бывают однопроходные (single-pass) и многопроходные (multi-pass), отладочные (debugging), оптимизирующие (optimizing) и с немедленным исполнением (load-and-go). Сам процесс компиляции состоит из двух стадий: анализа (лексического, синтаксического, семантического) и синтеза. На стадии анализа программа разбивается на составные части и создается её представление на промежуточном языке. На стадии синтеза из внутреннего представления сначала генерируется программа на промежуточном языке, которая затем оптимизируется, после чего кодогенератор порождает программу на целевом языке

синоним

translator

существительное

общая лексика

составитель

компилятор

вычислительная техника

компилирующая программа

транслятор

compiler         
1) компилятор
2) составитель
compiler         
компилирующая программа, программа-компилятор
compiler         
compiler noun 1) составитель 2) компилятор
compiling         

общая лексика

компиляция

компилирование

составление

формирование

вычислительная техника

трансляция

транслирование

recompile         

общая лексика

перекомпилировать

заново оттранслировать исходные тексты программы

Смотрите также

compiler; source code

optimizing compiler         
COMPILER THAT TRIES TO MINIMIZE OR MAXIMIZE SOME ATTRIBUTES OF AN EXECUTABLE COMPUTER PROGRAM
Compiler optimizations; Optimising compiler; Prescient store; Compiler analysis; Code-improving transformation; Compiler optimisation; Optimizing compilers; List of compiler optimizations; Optimizing transformation; Compiler optimization; Data-flow optimization; Optimizer-compiler

общая лексика

оптимизирующий компилятор

компилятор, выполняющий эквивалентные преобразования кода транслируемой программы, приводящие к получению более быстрой (оптимизация по времени исполнения) и/или более компактной программы (оптимизация по памяти). Оптимизация включает однократное вычисление общих подвыражений, вынос из цикла не зависящих от повторений операций, уничтожение лишних присваиваний, проверок и другие преобразования

Смотрите также

code optimizer; compiler; optimization

optimizing transformation         
COMPILER THAT TRIES TO MINIMIZE OR MAXIMIZE SOME ATTRIBUTES OF AN EXECUTABLE COMPUTER PROGRAM
Compiler optimizations; Optimising compiler; Prescient store; Compiler analysis; Code-improving transformation; Compiler optimisation; Optimizing compilers; List of compiler optimizations; Optimizing transformation; Compiler optimization; Data-flow optimization; Optimizer-compiler
оптимизирующее преобразование
YACC         
PARSER GENERATOR
Yet Another Compiler Compiler; Yacc programming language; YACC; Christopher F. Clark, Compiler Writer; .y

общая лексика

Yet Another Compiler-Compiler

генератор синтаксических анализаторов YACC

распространённое инструментальное средство для создания компиляторов. Его бесплатная версия под названием Bisson доступна в Интернете

дословная передача

ещё один компилятор компиляторов

Смотрите также

cumulative throughflow; fractional throughflow

silicon compiler         
Hardware compiler

общая лексика

кремниевый компилятор

компилятор в САПР электронных схем. Исходный текст для таких компиляторов похож на текст программы на обычном языке программирования, однако переменные в ней представляют логические сигналы или группы сигналов в микросхеме. Выходом такого компилятора являются топология микросхемы, реализующей заданную в исходной программе логику, и другая документация, необходимая для производства данной микросхемы

Смотрите также

compiler; EDA; logic synthesis; Verilog; VHDL

Определение

compiler
(compilers)
1.
A compiler is someone who compiles books, reports, or lists of information.
N-COUNT: oft N of n
2.
A compiler is a computer program which converts language that people can use into a code that the computer can understand. (COMPUTING)
N-COUNT

Википедия

Compiler

In computing, a compiler is a computer program that translates computer code written in one programming language (the source language) into another language (the target language). The name "compiler" is primarily used for programs that translate source code from a high-level programming language to a low-level programming language (e.g. assembly language, object code, or machine code) to create an executable program.: p1 

There are many different types of compilers which produce output in different useful forms. A cross-compiler produces code for a different CPU or operating system than the one on which the cross-compiler itself runs. A bootstrap compiler is often a temporary compiler, used for compiling a more permanent or better optimised compiler for a language.

Related software include, a program that translates from a low-level language to a higher level one is a decompiler ; a program that translates between high-level languages, usually called a source-to-source compiler or transpiler. A language rewriter is usually a program that translates the form of expressions without a change of language. A compiler-compiler is a compiler that produces a compiler (or part of one), often in a generic and reusable way so as to be able to produce many differing compilers.

A compiler is likely to perform some or all of the following operations, often called phases: preprocessing, lexical analysis, parsing, semantic analysis (syntax-directed translation), conversion of input programs to an intermediate representation, code optimization and machine specific code generation. Compilers generally implement these phases as modular components, promoting efficient design and correctness of transformations of source input to target output. Program faults caused by incorrect compiler behavior can be very difficult to track down and work around; therefore, compiler implementers invest significant effort to ensure compiler correctness.

Compilers are not the only language processor used to transform source programs. An interpreter is computer software that transforms and then executes the indicated operations.: p2  The translation process influences the design of computer languages, which leads to a preference of compilation or interpretation. In theory, a programming language can have both a compiler and an interpreter. In practice, programming languages tend to be associated with just one (a compiler or an interpreter).

Как переводится compiler на Русский язык